home *** CD-ROM | disk | FTP | other *** search
/ 100 Plus Great Games 2 / 100PLUSV2.BIN / games / WakeRace.dxr / Internal_10_Wait for Gun.ls < prev    next >
Encoding:
Text File  |  2002-01-25  |  341 b   |  20 lines

  1. property pBlink
  2.  
  3. on exitFrame me
  4.   if sprite(190).playing then
  5.     pBlink = pBlink + 1
  6.     if pBlink <= 5 then
  7.       sprite(105).member = "blue racer glow2"
  8.     else
  9.       if pBlink <= 10 then
  10.         sprite(105).member = "Kane"
  11.       else
  12.         pBlink = 1
  13.       end if
  14.     end if
  15.     go(the frame)
  16.   else
  17.     startTheTimer()
  18.   end if
  19. end
  20.